Anyone knows how to clear or increase the browser dumped heap memory with javascript, so it does not accumulate to crash?
function clearNavigatorMemory(){
navigator.heapMemory.clearDump();
}
function allocateNavigatorMemory(){
navigator.heapMemory.set( Math.pow ( 1000, 2) );
}